home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0" encoding="UTF-8"?> <!-- -*- SGML -*- -->
-
- <!--
- Some examples how to use hal fdi files for system preferences
- You can either uncomment the examples here or put them in a seperate .fdi
- file.
- -->
- <deviceinfo version="0.2">
- <!--
- The following shows how to hint gnome-volume-manager and other programs
- that honor the storage.automount_enabled_hint to not mount non-removable
- media.
- -->
- <!--
- <device>
- <match key="storage.hotpluggable" bool="false">
- <match key="storage.removable" bool="false">
- <merge key="storage.automount_enabled_hint" type="bool">false</merge>
- </match>
- </match>
- </device>
- -->
-
-
- <!--
- The following shows how to put sync and noatime on for devices smaller then
- 1Gb and off for device larger then that. Note that the sync option can wear
- out device faster then you'd like too. See
- http://readlist.com/lists/vger.kernel.org/linux-kernel/22/111748.html for
- more info.
- -->
- <!--
- <device>
- <match key="block.is_volume" bool="true">
- <match key="volume.size" compare_lt="1000000000">
- <match key="@block.storage_device:storage.hotpluggable" bool="true">
- <merge key="volume.policy.mount_option.sync" type="bool">true</merge>
- <merge key="volume.policy.mount_option.noatime" type="bool">true</merge>
- </match>
- <match key="@block.storage_device:storage.removable" bool="true">
- <merge key="volume.policy.mount_option.sync" type="bool">true</merge>
- <merge key="volume.policy.mount_option.noatime" type="bool">true</merge>
- </match>
- </match>
- <match key="volume.size" compare_ge="1000000000">
- <match key="@block.storage_device:storage.hotpluggable" bool="true">
- <merge key="volume.policy.mount_option.sync" type="bool">false</merge>
- <merge key="volume.policy.mount_option.noatime" type="bool">false</merge>
- </match>
- <match key="@block.storage_device:storage.removable" bool="true">
- <merge key="volume.policy.mount_option.sync" type="bool">false</merge>
- <merge key="volume.policy.mount_option.noatime" type="bool">false</merge>
- </match>
- </match>
- </match>
- </device>
- -->
- </deviceinfo>
-
-